home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 2
/
Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso
/
Aminet
/
biz
/
dbase
/
sqldb.lzh
/
sqldb
/
rexxmacros
/
sqltest3.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
1993-03-13
|
303 b
|
13 lines
/* sqltest3.rexx */
options results
address 'SQLserver'
'ExecSQL' 'open table salesreps;'
'ExecSQL' 'declare testcur cursor for select from salesreps;'
'ExecSQL' 'open testcur;'
'ExecSQL' 'fetch columns of testcur;'
say 'result = ' result
'ExecSQL' 'close testcur;'
'ExecSQL' 'close table salesreps;'